home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / SUPERPD.PAK / PADFRAME.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  46 lines

  1. // padframe.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14.  
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CPadFrame frame
  17.  
  18. class CPadFrame : public CMDIChildWnd
  19. {
  20.     DECLARE_DYNCREATE(CPadFrame)
  21. protected:
  22.  
  23. // Attributes
  24. public:
  25.  
  26. // Operations
  27. public:
  28.     static void Initialize();
  29.     static void Terminate();
  30.  
  31. // Implementation
  32. protected:
  33.     void ActivateFrame(int nCmdShow);
  34.  
  35.     // Generated message map functions
  36.     //{{AFX_MSG(CPadFrame)
  37.     afx_msg void OnSize(UINT nType, int cx, int cy);
  38.     //}}AFX_MSG
  39.     DECLARE_MESSAGE_MAP()
  40.  
  41.     static int m_nDefCmdShow;
  42.     static int m_nDefCmdShowOld;
  43. };
  44.  
  45. /////////////////////////////////////////////////////////////////////////////
  46.